home *** CD-ROM | disk | FTP | other *** search
/ Computer Arts Interactive 4 / CARTS4.iso / mac / MiniCad 6.0.1 demo / MiniCad 6.0.1 Demo / MiniCad 6.0.1 Demo.rsrc / STR#_7008.txt < prev    next >
Text File  |  1996-03-22  |  1KB  |  49 lines

  1. Writes data to a text file followed by a carriage return.
  2.  
  3. WriteLn(V1,V2,...,Vn: INTEGER or REAL or LONGINT or CHAR or STRING);
  4.  
  5. Writes data to a text file.
  6.  
  7. Write(V1, V2, ..., Vn: INTEGER or REAL or LONGINT or CHAR or STRING);
  8.  
  9. Closes a currently open text file.
  10.  
  11. Close(FileName : TEXT);
  12.  
  13. Allows the user to add text information to the end of a text file.
  14.  
  15. Append(FileName : TEXT);
  16.  
  17. Displays the standard Macintosh file dialog which requests the user to select a text file for output.
  18.  
  19. PutFile(CommentStr, FileDefault : STRING;  VAR FileName : TEXT);
  20.  
  21. Creates a new file or clears an existing one for writing.
  22.  
  23. Rewrite(FileName : TEXT);
  24.  
  25. Returns TRUE if the reading pointer of an open file has reached a carriage return.
  26.  
  27. EOLN(FileName : TEXT) : BOOLEAN;
  28.  
  29. Returns TRUE if the reading pointer of an open file has reached the end of the file.
  30.  
  31. EOF(Filename : TEXT) : BOOLEAN;
  32.  
  33. Reads data from the currently open text file and skips to the beginning of the next line of data.
  34.  
  35. ReadLn(VAR V1, V2, ..., Vn : INTEGER or REAL or LONGINT or CHAR or STRING);
  36.  
  37. Reads data from the currently open text file.
  38.  
  39. Read(VAR V1, V2, ..., Vn : INTEGER or REAL or LONGINT or CHAR or STRING);
  40.  
  41. Displays the standard Macintosh file dialog which requests the user to select a text file.
  42.  
  43. GetFile(VAR FileName : TEXT);
  44.  
  45. Opens a file for reading.
  46.  
  47. Open(FileName : TEXT);
  48.  
  49.